home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / nos_kit3.zip / MBOX_ASY.DOC < prev    next >
Text File  |  1990-12-08  |  2KB  |  40 lines

  1. To: tcp-group@ucsd.edu
  2. Subject: Mailbox on serial line
  3. Date: Sat, 10 Nov 90 18:24:51 +0100
  4. From: klemets@sics.se
  5.  
  6. I have added a serial line listener to NOS which provides mailbox
  7. access over a COM port, just like an ordinary telephone BBS.
  8.  
  9. The commands to activate and deactivate the listener on async
  10. interface ax0 are
  11.  
  12.     start mbox ax0
  13.     stop mbox ax0
  14.  
  15. respectively.
  16. I hope this feature will be useful for instance when somebody who does
  17. not have SLIP software wants to get it. They can then connect to NOS
  18. using a telephone modem and download an uuencoded software distribution.
  19.  
  20. It will also provide safe sysop access for unmanned routers. Connect a
  21. TNC and a telephone modem to the hilltop router, and all maintenance
  22. can be handled safeley over the phone.
  23.  
  24. Currently only COM port -> BBS access is provided. Is there any
  25. interest in having a gateway in the other direction? (A phone patch
  26. facility.)
  27.  
  28. To implementcode this code I had to enhance the NOS socket library a
  29. little bit. The AF_LOCAL sockets would only work in one direction, ie.
  30. one would need two AF_LOCAL sockets for bidirectional communication,
  31. breaking the transparency in comparision with other socket types. I
  32. implemented the socketpair(AF_LOCAL,...) function which yields two
  33. mutually connected local sockets. The socket(AF_LOCAL,...) call returns
  34. a local socket that is connected to itself, thus making the scheme
  35. nicely backwards compatible with the original behaviour.
  36.  
  37. This stuff is all in the mailbox.arc file at sics.se.
  38.  
  39. Anders
  40.